home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH27.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-01  |  178 b   |  13 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  printf("%d \n", series());
  5.  printf("%d", series());
  6.  }
  7.  series()
  8.  {
  9.  static numbers = 10;
  10.  numbers = numbers + 10;
  11.  return(numbers);
  12.  }
  13.